home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Die Ultimative Software-P…i Collection 1996 & 1997
/
Die Ultimative Software-Pakete CD-ROM fur Atari Collection 1996 & 1997.iso
/
g
/
gnu_c
/
incl98.zoo
/
file.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
C/C++ Source or Header
|
1993-11-05
|
390 b
|
24 lines
#ifndef _FILE_H
#define _FILE_H
#ifndef _COMPILER_H
#include <compiler.h>
#endif
#ifdef __MINT__
/* lockf() comands */
#define LOCK_SH 1 /* shared lock */
#define LOCK_EX 2 /* exclusive lock */
#define LOCK_NB 4 /* non-blocking */
#define LOCK_UN 8 /* unlock */
#define FREAD 1
#define FWRITE 2
__EXTERN int flock __PROTO((int, int));
#endif
#include <fcntl.h>
#endif /* _FILE_H */